<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>INGEST on Kinetica Docs</title><link>/7.2/snippet-tags/ingest/</link><description>Recent content in INGEST on Kinetica Docs</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="/7.2/snippet-tags/ingest/index.xml" rel="self" type="application/rss+xml"/><item><title>JSON Ingest</title><link>/7.2/snippets/json-ingest/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/7.2/snippets/json-ingest/</guid><description>Basic Ingest from File Ingest from File with Options Ingest from JSON String The /insert/records/json REST endpoint can be called directly, or with a convenient wrapper in the Java API.
See Overview for call details and Responses for return values.
Basic Ingest from File cURL Python Java Java (Distributed Ingest) JavaScript Node.js cURL 1 2 3 4 5 6 7 8 9 10 KINETICA_URL=http://localhost:9191 USERNAME=auser PASSWORD=apassword TABLE_NAME=product JSON_FILE_NAME=products.json curl -sS -X POST --header &amp;#34;Content-Type: application/json&amp;#34; \ --user &amp;#34;${USERNAME}:${PASSWORD}&amp;#34; \ -d @${JSON_FILE_NAME} \ ${KINETICA_URL}/insert/records/json?</description></item><item><title>Loading Data</title><link>/7.2/snippets/load-data/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/7.2/snippets/load-data/</guid><description>LOAD INTO Single &amp;amp; Multiple KiFS Files Data Sources File/Queue-Based Query-Based File Types Delimited Text Files JSON/GeoJSON Files Parquet Files Shapefiles Avro Files Primary/Shard Keys Query Partitioning Options Other Options External Tables LOAD INTO Single &amp;amp; Multiple KiFS Files Single File Multiple Files by List Single File 1 2 LOAD DATA INTO example.product FROM FILE PATHS &amp;#39;kifs://data/products.csv&amp;#39; Multiple Files by List 1 2 LOAD DATA INTO example.product FROM FILE PATHS &amp;#39;kifs://data/products.</description></item><item><title>Vector Search</title><link>/7.2/snippets/vector/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/7.2/snippets/vector/</guid><description>Creating a Table Vector Column without Normalization Vector Column with Normalization Inserting Vector Data Retrieving Vector Data Indexing Vector Data CAGRA Vector Index HNSW Vector Index Searching Vector Data Vector Search by Operator Vector Search by Function Creating a Table A vector column can optionally be configured to normalize the vector data inserted into it, giving each vector a magnitude (L2 norm) of 1. This can improve the performance of some vector operations with minimal overhead.</description></item><item><title>Creating Credentials</title><link>/7.2/snippets/create-credentials/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/7.2/snippets/create-credentials/</guid><description>Azure Google Cloud Storage HDFS JDBC Kafka (Apache) Kafka (Confluent) Remote Repository S3 (Amazon) Several authentication schemes across multiple providers are supported. For a detailed overview of all of the provider-specific options, see the SQL documentation.
Azure Password SAS Token Active Directory Password 1 2 3 4 CREATE CREDENTIAL azure_cred TYPE = &amp;#39;azure_storage_key&amp;#39;, IDENTITY = &amp;#39;sampleacc&amp;#39;, SECRET = &amp;#39;foobaz123&amp;#39; SAS Token 1 2 3 4 CREATE CREDENTIAL azure_cred TYPE = &amp;#39;azure_sas&amp;#39;, IDENTITY = &amp;#39;sampleacc&amp;#39;, SECRET = &amp;#39;sv=2015-07-08&amp;amp;sr=b&amp;amp;sig=39Up0JzHkxhUlhFEjEH9673DJxe7w6.</description></item><item><title>Creating Data Sources</title><link>/7.2/snippets/create-data-sources/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/7.2/snippets/create-data-sources/</guid><description>Azure BLOB Google Cloud Storage HDFS JDBC Kafka (Apache) Kafka (Confluent) S3 Several authentication schemes across multiple providers are supported. For a detailed overview of all of the provider-specific options, see the SQL documentation.
Note
Creating an authenticated data source may require creating a corresponding credential object to store the authentication information and then referencing that object when creating the data source. See Creating Credentials for examples.
Azure BLOB Credential Public (No Auth) Managed Credentials Password SAS Token Active Directory Credential 1 2 3 4 5 6 7 CREATE DATA SOURCE azure_ds LOCATION = &amp;#39;AZURE&amp;#39; WITH OPTIONS ( CREDENTIAL = &amp;#39;azure_cred&amp;#39;, CONTAINER NAME = &amp;#39;samplecontainer&amp;#39; ) Public (No Auth) 1 2 3 4 5 6 7 CREATE DATA SOURCE azure_ds LOCATION = &amp;#39;AZURE&amp;#39; USER = &amp;#39;sampleacc&amp;#39; WITH OPTIONS ( CONTAINER NAME = &amp;#39;samplecontainer&amp;#39; ) Managed Credentials 1 2 3 4 5 6 7 8 9 10 CREATE DATA SOURCE azure_ds LOCATION = &amp;#39;AZURE&amp;#39; USER = &amp;#39;sampleacc&amp;#39; WITH OPTIONS ( USE_MANAGED_CREDENTIALS = true, STORAGE ACCOUNT NAME = &amp;#39;sampelacc&amp;#39;, CONTAINER NAME = &amp;#39;samplecontainer&amp;#39;, TENANT ID = &amp;#39;x0xxx10-00x0-0x01-0xxx-x0x0x01xx100&amp;#39; ) Password 1 2 3 4 5 6 7 8 CREATE DATA SOURCE azure_ds LOCATION = &amp;#39;AZURE&amp;#39; USER = &amp;#39;sampleacc&amp;#39; PASSWORD = &amp;#39;foobaz123&amp;#39; WITH OPTIONS ( CONTAINER NAME = &amp;#39;samplecontainer&amp;#39; ) SAS Token 1 2 3 4 5 6 7 8 CREATE DATA SOURCE azure_ds LOCATION = &amp;#39;AZURE&amp;#39; USER = &amp;#39;sampleacc&amp;#39; WITH OPTIONS ( CONTAINER NAME = &amp;#39;samplecontainer&amp;#39;, SAS TOKEN = &amp;#39;sv=2015-07-08&amp;amp;sr=b&amp;amp;sig=39Up0JzHkxhUlhFEjEH9673DJxe7w6clRCg0V6lCgSo%3D&amp;amp;se=2016-10-18T21%A51%A337Z&amp;amp;sp=rcw&amp;#39; ) Active Directory 1 2 3 4 5 6 7 8 9 10 CREATE DATA SOURCE azure_ds LOCATION = &amp;#39;AZURE&amp;#39; USER = &amp;#39;jdoe&amp;#39; PASSWORD = &amp;#39;foobaz123&amp;#39; WITH OPTIONS ( STORAGE ACCOUNT NAME = &amp;#39;sampelacc&amp;#39;, CONTAINER NAME = &amp;#39;samplecontainer&amp;#39;, TENANT ID = &amp;#39;x0xxx10-00x0-0x01-0xxx-x0x0x01xx100&amp;#39; ) Google Cloud Storage Credential Managed Credentials Public (No Auth) User ID &amp;amp; Key JSON Key Credential 1 2 3 4 5 6 7 CREATE DATA SOURCE gcs_ds LOCATION = &amp;#39;GCS&amp;#39; WITH OPTIONS ( CREDENTIAL = &amp;#39;gcs_cred&amp;#39;, GCS_BUCKET_NAME = &amp;#39;gcs-public&amp;#39; ) Managed Credentials 1 2 3 4 5 6 7 CREATE DATA SOURCE gcs_ds LOCATION = &amp;#39;GCS&amp;#39; WITH OPTIONS ( USE_MANAGED_CREDENTIALS = true, GCS_BUCKET_NAME = &amp;#39;gcs-public&amp;#39; ) Public (No Auth) 1 2 3 4 5 6 CREATE DATA SOURCE gcs_ds LOCATION = &amp;#39;GCS&amp;#39; WITH OPTIONS ( GCS_BUCKET_NAME = &amp;#39;gcs-public&amp;#39; ) User ID &amp;amp; Key 1 2 3 4 5 6 7 8 CREATE DATA SOURCE gcs_ds LOCATION = &amp;#39;GCS&amp;#39; USER = &amp;#39;auser@auser.</description></item></channel></rss>