Schweitzer Fachinformationen
Wenn es um professionelles Wissen geht, ist Schweitzer Fachinformationen wegweisend. Kunden aus Recht und Beratung sowie Unternehmen, öffentliche Verwaltungen und Bibliotheken erhalten komplette Lösungen zum Beschaffen, Verwalten und Nutzen von digitalen und gedruckten Medien.
Bitte beachten Sie
Von Mittwoch, dem 12.11.2025 ab 23:00 Uhr bis Donnerstag, dem 13.11.2025 bis 07:00 Uhr finden Wartungsarbeiten bei unserem externen E-Book Dienstleister statt. Daher bitten wir Sie Ihre E-Book Bestellung außerhalb dieses Zeitraums durchzuführen. Wir bitten um Ihr Verständnis. Bei Problemen und Rückfragen kontaktieren Sie gerne unseren Schweitzer Fachinformationen E-Book Support.
"QuickSight Essentials" Unlock the full potential of AWS QuickSight with "QuickSight Essentials," a comprehensive guide for analytics professionals, architects, and data leaders seeking to master cloud-native business intelligence. This book offers unparalleled depth, starting with the foundational architecture of QuickSight and covering everything from the SPICE engine internals and AWS integrations to best practices for high availability, security, and scalability. Readers will gain intimate familiarity with QuickSight's networking, service editions, and seamlessly integrated AWS ecosystem, ensuring robust, enterprise-ready deployments. Moving beyond the foundations, "QuickSight Essentials" dives into advanced data connectivity, governance, and preparation. Discover how to securely connect to diverse data sources-on-premises and in the cloud-while implementing fine-grained data access controls and comprehensive auditing for regulatory compliance. The book explores state-of-the-art techniques for data modeling, preparation, and performance tuning, empowering readers to work with structured and semi-structured data at scale. Through practical guidance on metadata management, lineage, and real-time data refresh, you'll be equipped to drive accurate, high-performance analytics. At its core, this essential resource bridges theory with actionable practice-covering advanced visualization, parameterization, automation via DevOps, and embedded analytics for productized BI solutions. Learn to optimize costs, scale resources efficiently, and extend QuickSight through custom integrations and AI enhancements. With dedicated chapters on compliance, operational excellence, and future trends such as generative AI and sustainability analytics, "QuickSight Essentials" provides a holistic blueprint for building resilient, modern analytics solutions and democratizing insights across your organization.
Delve into the sophisticated world of data connectivity and governance that underpins every successful analytics project. In this chapter, unlock the mechanics of securely connecting to rich, diverse data sources-both on-premises and in the cloud-while mastering the techniques that ensure only the right people access the right data at the right time. Discover the pillars of auditability, trust, and control that transform raw data connections into a foundation for confident, compliant, and enterprise-ready analytics.
Connecting Amazon QuickSight to diverse data sources requires a comprehensive understanding of multiple integration paradigms, authentication mechanisms, and network configurations. This section explicates advanced techniques for establishing robust and secure connectivity with an extensive spectrum of data repositories, including JDBC/ODBC-driven databases, direct query interfaces, API-based sources, and on-premises or hybrid infrastructure environments. Methodical configuration and best practices for each connection type optimize performance, security, and maintainability.
QuickSight supports standard JDBC (Java Database Connectivity) and ODBC (Open Database Connectivity) protocols for linking relational and non-relational databases. These interfaces necessitate the installation and correct configuration of appropriate drivers while ensuring network accessibility.
Configuration begins with selecting the database engine (e.g., PostgreSQL, MySQL, Oracle, Microsoft SQL Server), followed by specifying connection parameters such as hostname, port, database name, and credentials. QuickSight allows the registration of new data sources via the AWS Management Console or AWS CLI, where JDBC/ODBC connections are defined.
Authentication models vary by data source but typically involve SQL login credentials or IAM database authentication tokens. It is crucial to encrypt credentials using AWS Secrets Manager, enabling secure retrieval during runtime and reducing exposure risks.
Connections using JDBC/ODBC frequently benefit from connection pooling to optimize resource utilization and reduce latency. However, QuickSight manages connection lifecycles internally; thus, careful monitoring of query timeouts and session limits on the database server is essential.
aws quicksight create-data-source \ --aws-account-id 123456789012 \ --data-source-id my-postgresql-source \ --name "PostgreSQL Data Source" \ --type POSTGRESQL \ --credentials '{ "CredentialPair": { "Username": "dbuser", "Password": "mypassword" } }' \ --data-source-parameters '{ "Host": "db.example.com", "Port": 5432, "Database": "sales_db" }' \ --region us-east-1
For troubleshooting connection failures, verify the network reachability of the target endpoint, confirm firewall rules permit QuickSight IP ranges, and ensure that the database user permissions align with required query privileges. Employ QuickSight's query diagnostics and database logs to pinpoint authentication or syntax issues.
Direct querying in QuickSight facilitates real-time data retrieval without full data ingestion, which is critical for operational reporting on volatile or large datasets. This mode, known as SPICE (Super-fast, Parallel, In-memory Calculation Engine) refresh bypassed, relies heavily on the performance and availability of the underlying data source.
To enable direct queries, QuickSight must be configured with appropriate credentials and connection strings identical to those used for JDBC/ODBC. However, query execution is dispatched live during dashboard usage. The data source must support ad-hoc query execution, and the network configuration must minimize latency to avoid impeding user experience.
Best practices promote limiting the data volume per query via filters and aggregations to reduce execution delays. Additionally, setting query timeout thresholds guards against long-running requests that could degrade service responsiveness.
Authentication for direct queries follows the data source's native model but also must align with QuickSight's user roles and permissions, ensuring data security and governance.
Beyond traditional database connections, QuickSight can ingest data via APIs, either through custom connectors or AWS Glue and Lambda-based extraction workflows. This method is essential for connecting to web services, RESTful APIs, or SaaS platforms that lack conventional database interfaces.
Developers implement ETL (Extract, Transform, Load) pipelines that invoke APIs, process JSON, XML, or other payload formats, and deposit structured datasets into Amazon S3 or directly into data lakes. QuickSight then ingests from these storage backends, preserving data freshness through scheduled refresh cycles.
Securing API integrations involves implementing OAuth tokens, API keys, or mutual TLS authentication within the ETL layer. Credential rotation and secure storage in AWS Secrets Manager underpin resilient security postures.
import boto3 import requests def fetch_and_store(api_url, s3_bucket, s3_key): response = requests.get(api_url, headers={"Authorization": "Bearer MY_TOKEN"}) response.raise_for_status() data = response.json() s3_client = boto3.client('s3') s3_client.put_object(Bucket=s3_bucket, Key=s3_key, Body=str(data)) fetch_and_store("https://api.example.com/data", "my-quicksight-bucket", "api-data.json")
Testing API connectivity involves verifying endpoint accessibility, handling rate limits, and parsing responses correctly. Logging failures at each ETL stage facilitates rapid troubleshooting.
Integrating QuickSight with on-premises systems or hybrid cloud deployments introduces network complexity and security considerations. Amazon QuickSight addresses this via AWS Direct Connect, AWS Site-to-Site VPN, or AWS PrivateLink to establish secure, low-latency connectivity between AWS and corporate networks.
To enable QuickSight to access on-premises databases, organizations deploy the AWS Data Gateway or configure Virtual Private Cloud (VPC) endpoints in conjunction with private subnets containing database resources. This approach restricts exposure to the public internet and enforces security policies.
Authentication in such environments often leverages enterprise identity providers via SAML 2.0 or Active Directory Federation Services (ADFS) integrated with AWS IAM. Transparent encryption in transit using TLS ensures data confidentiality during query execution.
A critical configuration step is registering the on-premises data source with QuickSight, specifying network parameters that permit communication through NAT gateways or proxy servers if applicable.
Troubleshooting hybrid connectivity involves validating VPN or Direct Connect tunnel health, confirming DNS resolution from QuickSight to on-premises hosts, and auditing IAM policies that control data source access. Additionally, regular network path performance monitoring helps sustain consistent query throughput.
Dateiformat: ePUBKopierschutz: Adobe-DRM (Digital Rights Management)
Systemvoraussetzungen:
Das Dateiformat ePUB ist sehr gut für Romane und Sachbücher geeignet – also für „fließenden” Text ohne komplexes Layout. Bei E-Readern oder Smartphones passt sich der Zeilen- und Seitenumbruch automatisch den kleinen Displays an. Mit Adobe-DRM wird hier ein „harter” Kopierschutz verwendet. Wenn die notwendigen Voraussetzungen nicht vorliegen, können Sie das E-Book leider nicht öffnen. Daher müssen Sie bereits vor dem Download Ihre Lese-Hardware vorbereiten.Bitte beachten Sie: Wir empfehlen Ihnen unbedingt nach Installation der Lese-Software diese mit Ihrer persönlichen Adobe-ID zu autorisieren!
Weitere Informationen finden Sie in unserer E-Book Hilfe.
Dateiformat: ePUBKopierschutz: ohne DRM (Digital Rights Management)
Das Dateiformat ePUB ist sehr gut für Romane und Sachbücher geeignet – also für „glatten” Text ohne komplexes Layout. Bei E-Readern oder Smartphones passt sich der Zeilen- und Seitenumbruch automatisch den kleinen Displays an. Ein Kopierschutz bzw. Digital Rights Management wird bei diesem E-Book nicht eingesetzt.