Redshift Premium 1.0.2

  

Premium

Administration Tools từ xa / Trojans 1. Cerberus 1.03.4 BETA 2. Turkojan 4 GOLD 3. Apocalypse 1.4.4 4. Spy-Net 2.6 Rar password: Spy-Net 5.Read more ». PlayStation Vita plugin to enable background music play for any game or application. cuevavirus/MusicPremium.

Latest version

Released:

Singer.io target for loading data to Amazon Redshift - PipelineWise compatible

Redshift Premium 1.0.2 Pro

Project description

Singer target that loads data into Amazon Redshift following the Singer spec.

This is a PipelineWise compatible target connector.

How to use it

The recommended method of running this target is to use it from PipelineWise. When running it from PipelineWise you don't need to configure this tap with JSON files and most of things are automated. Please check the related documentation at Target Redshift

If you want to run this Singer Target independently please read further.

Install

First, make sure Python 3 is installed on your system or follow theseinstallation instructions for Mac orUbuntu.

It's recommended to use a virtualenv:

or

To run

Like any other target that's following the singer specificiation:

some-singer-tap | target-redshift --config [config.json]

It's reading incoming messages from STDIN and using the properites in config.json to upload data into Amazon Redshift.

Note: To avoid version conflicts run tap and targets in separate virtual environments.

Configuration settings

Running the the target connector requires a config.json file. Example with the minimal settings:

Full list of options in config.json:

PropertyTypeRequired?Description
hostStringYesRedshift Host
portIntegerYesRedshift Port
userStringYesRedshift User
passwordStringYesRedshift Password
dbnameStringYesRedshift Database name
aws_profileStringNoAWS profile name for profile based authentication. If not provided, AWS_PROFILE environment variable will be used.
aws_access_key_idStringNoS3 Access Key Id. Used for S3 and Redshfit copy operations. If not provided, AWS_ACCESS_KEY_ID environment variable will be used.
aws_secret_access_keyStringNoS3 Secret Access Key. Used for S3 and Redshfit copy operations. If not provided, AWS_SECRET_ACCESS_KEY environment variable will be used.
aws_session_tokenStringNoS3 AWS STS token for temporary credentials. If not provided, AWS_SESSION_TOKEN environment variable will be used.
aws_redshift_copy_role_arnStringNoAWS Role ARN to be used for the Redshift COPY operation. Used instead of the given AWS keys for the COPY operation if provided - the keys are still used for other S3 operations
s3_aclStringNoS3 Object ACL
s3_bucketStringYesS3 Bucket name
s3_key_prefixString(Default: None) A static prefix before the generated S3 key names. Using prefixes you can upload files into specific directories in the S3 bucket.
copy_optionsString(Default: EMPTYASNULL BLANKSASNULL TRIMBLANKS TRUNCATECOLUMNS TIMEFORMAT 'auto' COMPUPDATE OFF STATUPDATE OFF). Parameters to use in the COPY command when loading data to Redshift. Some basic file formatting parameters are fixed values and not recommended overriding them by custom values. They are like: CSV GZIP DELIMITER ',' REMOVEQUOTES ESCAPE
batch_size_rowsInteger(Default: 100000) Maximum number of rows in each batch. At the end of each batch, the rows in the batch are loaded into Redshift.
flush_all_streamsBoolean(Default: False) Flush and load every stream into Redshift when one batch is full. Warning: This may trigger the COPY command to use files with low number of records, and may cause performance problems.
parallelismInteger(Default: 0) The number of threads used to flush tables. 0 will create a thread for each stream, up to parallelism_max. -1 will create a thread for each CPU core. Any other positive number will create that number of threads, up to parallelism_max.
max_parallelismInteger(Default: 16) Max number of parallel threads to use when flushing tables.
default_target_schemaStringName of the schema where the tables will be created. If schema_mapping is not defined then every stream sent by the tap is loaded into this schema.
default_target_schema_select_permissionsStringGrant USAGE privilege on newly created schemas and grant SELECT privilege on newly created tables to a specific list of users or groups. Example: {'users': ['user_1','user_2'], 'groups': ['group_1', 'group_2']} If schema_mapping is not defined then every stream sent by the tap is granted accordingly.
schema_mappingObjectUseful if you want to load multiple streams from one tap to multiple Redshift schemas.If the tap sends the stream_id in <schema_name>-<table_name> format then this option overwrites the default_target_schema value. Note, that using schema_mapping you can overwrite the default_target_schema_select_permissions value to grant SELECT permissions to different groups per schemas or optionally you can create indices automatically for the replicated tables. Note: This is an experimental feature and recommended to use via PipelineWise YAML files that will generate the object mapping in the right JSON format. For further info check a [PipelineWise YAML Example]
disable_table_cacheBoolean(Default: False) By default the connector caches the available table structures in Redshift at startup. In this way it doesn't need to run additional queries when ingesting data to check if altering the target tables is required. With disable_table_cache option you can turn off this caching. You will always see the most recent table structures but will cause an extra query runtime.
add_metadata_columnsBoolean(Default: False) Metadata columns add extra row level information about data ingestions, (i.e. when was the row read in source, when was inserted or deleted in redshift etc.) Metadata columns are creating automatically by adding extra columns to the tables with a column prefix _SDC_. The metadata columns are documented at https://transferwise.github.io/pipelinewise/data_structure/sdc-columns.html. Enabling metadata columns will flag the deleted rows by setting the _SDC_DELETED_AT metadata column. Without the add_metadata_columns option the deleted rows from singer taps will not be recongisable in Redshift.
hard_deleteBoolean(Default: False) When hard_delete option is true then DELETE SQL commands will be performed in Redshift to delete rows in tables. It's achieved by continuously checking the _SDC_DELETED_AT metadata column sent by the singer tap. Due to deleting rows requires metadata columns, hard_delete option automatically enables the add_metadata_columns option as well.
data_flattening_max_levelInteger(Default: 0) Object type RECORD items from taps can be loaded into VARIANT columns as JSON (default) or we can flatten the schema by creating columns automatically.When value is 0 (default) then flattening functionality is turned off.
primary_key_requiredBoolean(Default: True) Log based and Incremental replications on tables with no Primary Key cause duplicates when merging UPDATE events. When set to true, stop loading data if no Primary Key is defined.
validate_recordsBoolean(Default: False) Validate every single record message to the corresponding JSON schema. This option is disabled by default and invalid RECORD messages will fail only at load time by Snowflake. Enabling this option will detect invalid records earlier but could cause performance degradation.
skip_updatesBooleanNo(Default: False) Do not update existing records when Primary Key is defined. Useful to improve performance when records are immutable, e.g. events
compressionStringNoThe compression method to use when writing files to S3 and running Redshift COPY. The currently supported methods are gzip or bzip2. Defaults to none (').
slicesIntegerNoThe number of slices to split files into prior to running COPY on Redshift. This should be set to the number of Redshift slices. The number of slices per node depends on the node size of the cluster - run SELECT COUNT(DISTINCT slice) slices FROM stv_slices to calculate this. Defaults to 1.
temp_dirString(Default: platform-dependent) Directory of temporary CSV files with RECORD messages.

To run tests:

  1. Install python dependencies in a virtual env:
  1. To run unit tests:
  1. To run integration tests define environment variables first:

To run pylint:

  1. Install python dependencies and run python linter

License

Apache License Version 2.0

See LICENSE to see the full text.

Release historyRelease notifications | RSS feed

1.6.0

1.5.0

1.4.1

1.4.0

1.3.0

1.2.1

1.2.0

1.1.0

1.0.8

1.0.7

1.0.6

1.0.5

1.0.4

1.0.3

1.0.2

1.0.1

1.0.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Files for pipelinewise-target-redshift, version 1.6.0
Filename, sizeFile typePython versionUpload dateHashes
Filename, size pipelinewise_target_redshift-1.6.0-py3-none-any.whl (23.1 kB) File type Wheel Python version py3 Upload dateHashes
Filename, size pipelinewise-target-redshift-1.6.0.tar.gz (18.4 kB) File type Source Python version None Upload dateHashes
RedshiftCloseRedshift

Hashes for pipelinewise_target_redshift-1.6.0-py3-none-any.whl

Hashes for pipelinewise_target_redshift-1.6.0-py3-none-any.whl
AlgorithmHash digest
SHA2569d0dad7f8a6a670e3b8a79eb594ec0930da0b497841d38051f6b6d402ee94d69
MD582afb4c3e9cdcd7d706a28c7c7347763
BLAKE2-2560bdee9fe8d903608f7acf2e1eed261bee5d4ff1964fe6002e645db4d197cb95c
Close

Hashes for pipelinewise-target-redshift-1.6.0.tar.gz

Hashes for pipelinewise-target-redshift-1.6.0.tar.gz
AlgorithmHash digest
SHA256d73b8b95cb09c3fb33b23f45eba750daf40de242c86bbd438b85b8f811d01300
MD5fc3b91279d7baca9432e695f6f34b4ae
BLAKE2-25636a20b9ce51c94a2b85170a704f994b2cc51c2e138af255c98417e67f08b3ad0

Earth 3D 3.2.0

Redshift Premium 1.0.2 Apk


Turn your monitor into a realistic space shuttle window! Our planet looks exactly as it's seen by astronauts. You see the blackness of outer space with sparks of stars on it. You are flying around the Earth, a colorful ball with a veil of atmosphere.
Features:
  • explore our planet with Interactive mode
  • more than 1,500 geographic objects
  • more than 300 wonders of the world
  • compatible with Mavericks
  • high-quality 3D graphics and effects
  • HD-textures for 1920x1080 and up
  • Retina display ready
  • original music track
  • screen saver mode
  • multi-monitor support with monitor selection
  • removing dock icon
  • autostart at login
  • doesn't prevent your computer from going to sleep

What's New in Version 3.2.0

Added:
  • the largest peninsulas
  • the most distinguished capes
  • antarctic research stations
  • new cities
  • downloadable “Photo & Additional Info” in-app purchase

Updated:
  • political map
  • buttons and zoom slide

  • Title: Earth 3D
  • Developer: Igor Panichev
  • Compatibility: OS X 10.7 or later, 64-bit processor
  • Language: English, French, German, Italian, Russian, Spanish
  • Includes: Pre-K'ed
  • Size: 618.05 MB
  • View in Mac App Store

Redshift Premium 1.0.2 Version

NitroFlare: