Releases: Azure/azure-kusto-java
v2.0.0(deprecated)
BREAKING CHANGES:
Query:
Results return now in a new class KustoOperationResult
, which implements Iterator<KustoResultSetTable>
, KustoResultSetTable
are the tables returned from the query result each implementing ResultSet
. KustoOperationResult
has different methods - please call KustoOperationResult.getPrimaryResults
to the table with the results data. Call KustoResultSetTable.getData
to get the all the results data as array of arrays.
FEATURES:
A new class called ColumnMapping
can be used to configure mappings inline using ingesionProperties.ingestionMapping
. This is not recommended (better create the mapping on the table and use reference) for production but is nice for development
v1.4.2
v1.4.1
v1.4.0
v1.3.0
v1.2.0
v1.1.0
v1.0.0
BREAKING CHANGES:
None.
FEATURES:
- Java SDK now supports StreamingIngestion
- ClientRequestProperties now supports query properties
- Writing ResultSet more efficiently
FIXES:
None
1.0.0-BETA-06
- Enabling serialization of IngestionResult (used by spark connector) and easy conversion of ClientRequestProperties and IngestionProperties to and from json
- Adding ingestion Tags and fixing bug with adding tags
1.0.0-BETA-04
Working version on Maven (finally!)