diff --git a/README.md b/README.md index 76b2dadb..c1be217f 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,14 @@ client.write(backend='kv', table='mytable', dfs=df) #### backend specific parameters ##### KV + + * condition=' ' (optional) - for detailed information on condition expressions see [docs](https://www.iguazio.com/docs/reference/latest-release/expressions/condition-expression/) Example: @@ -80,7 +87,7 @@ Example: data = [['tom', 10, 'TLV'], ['nick', 15, 'Berlin'], ['juli', 14, 'NY']] df = pd.DataFrame(data, columns = ['name', 'age', 'city']) df.set_index('name') -v3c.write(backend='kv', table='mytable', dfs=tsdf, expression='city="NY"', condition='age>14') +v3c.write(backend='kv', table='mytable', dfs=df, condition='age>14') ``` ### Read @@ -179,9 +186,12 @@ Currently no `execute` commands are available for the TSDB backend. ##### KV * infer, inferschema - inferring and creating a schema file for a given kv table. -Example: `client.execute(backend='kv', table='mytable', command='infer')` + Example: `client.execute(backend='kv', table='mytable', command='infer')` + + ##### Stream * put - putting a new object to a stream.