azure-kusto-node

JS SDK for the Kusto service

MIT License

Downloads
311.9K
Stars
53
Committers
29

Bot releases are hidden (Show)

azure-kusto-node - Fix Response Parsing

Published by ArielYehezkely almost 5 years ago

BREAKING CHANGES:

None

FEATURES:

None

FIXES:

  • Fix Json response parsing
azure-kusto-node - Introducing Streaming Ingest Client

Published by ArielYehezkely almost 5 years ago

Streaming ingest is used to ingest small chunks of data directly to the engine.
Streaming ingest feature should be enabled on the target cluster and database/table - to read more about streaming ingestion see Streaming ingestion (Preview)

BREAKING CHANGES:

None

FEATURES:

Streaming ingest client - provides methods to ingest from ReadStream and local files.

FIXES:

None

azure-kusto-node - Support for Setting AadAuthorityUri Using an Environment Variable

Published by boazsha almost 5 years ago

BREAKING CHANGES:

None

FEATURES:

  • If the use of a non-default AadAuthorityUri is needed, set environment variable AadAuthorityUri to the required uri.

FIXES:

None

azure-kusto-node - Support for new Ingestion Mapping API and Format

Published by boazsha about 5 years ago

BREAKING CHANGES:

  • Parameter for IngestionProperties constructor is now an object, instead of a list of parameters.
  • IngestionProperties object supports the new Ingestion Mapping API and formats:
    1. ingestionMapping replaces the deprecated mapping.
    2. ingestionMappingType.
    3. ingestionMappingReference replaces the deprecated mappingReference.
  • Changed DataFormat ENUM to be all caps, e.g DataFormat.csv is now DataFormat.CSV

FEATURES:

  • Fully supports Parquet ingestion.

FIXES:

  • When ad-hoc ingestionProperties were given to an ingest command, a few default ingestionProperties were unnecessarily edited when the two objects were merged.
azure-kusto-node - Fix error when command is preceded by whitespace characters

Published by danield137 about 5 years ago

BREAKING CHANGES:

None.

FEATURES:

None.

FIXES:

  • Before the fix, if a client executed a command preceded with certain whitespace characters (e.g. .show version), an error would occur.
    Now, the command is trimmed before it's sent to the cluster.
azure-kusto-node - Managed Identity Support

Published by danield137 about 5 years ago

BREAKING CHANGES:

None.

FEATURES:

  • Added support for managed identity.
const kcsb = KustoConnectionStringBuilder.withAadManagedIdentities(`https://${clusterName}.kusto.windows.net`, '(Optional)msiEndpoint', '(Optional)clientId');

FIXES:

None.

azure-kusto-node - Exposing source id

Published by danield137 over 5 years ago

BREAKING CHANGES:

None.

FEATURES:

  • Add the ability to set the source id of source descriptors. Useful for monitoring purposes (when reading statuses from queue, can correlate status via IngestionSourceId on status message).
const uuidv4 = require('uuid/v4');
let sourceId = uuidv4();
let fileDescriptor = new FileDescriptor("stormEvents.csv", sourceId);

ingestClient.ingestFromFile(fileDescriptor, ingestionProperties, (err) => {
//set up status queue monitoring..
});

FIXES:

None.

azure-kusto-node - Exposing `ClientRequestProperties`

Published by danield137 almost 6 years ago

azure-kusto-node - Fix for column ordering when serializing rows

Published by danield137 almost 6 years ago

azure-kusto-node - Docs

Published by danield137 almost 6 years ago

azure-kusto-node - Exposing Ingestion Source Descriptors

Published by danield137 almost 6 years ago

azure-kusto-node - Docs Fix

Published by danield137 about 6 years ago

Adding more docs

Package Rankings
Top 3.12% on Npmjs.org
Badges
Extracted from project README
npm version npm npm version npm
Related Projects