-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathUpdateExample.java
More file actions
82 lines (70 loc) · 3.38 KB
/
Copy pathUpdateExample.java
File metadata and controls
82 lines (70 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package com.example.vault;
import com.skyflow.Skyflow;
import com.skyflow.config.Credentials;
import com.skyflow.config.VaultConfig;
import com.skyflow.enums.Env;
import com.skyflow.enums.LogLevel;
import com.skyflow.enums.UpdateType;
import com.skyflow.errors.SkyflowException;
import com.skyflow.vault.data.UpdateRequest;
import com.skyflow.vault.data.UpdateRequestRecord;
import com.skyflow.vault.data.UpdateResponse;
import com.skyflow.vault.data.UpdateResponseRecord;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* This sample demonstrates the Skyflow Java SDK's unary update operation. This makes exactly one
* API call per invocation: there is no internal batching or concurrency to configure.
*/
public class UpdateExample {
public static void main(String[] args) {
try {
// Step 1: Initialize credentials with the path to your service account key file
// String filePath = "<YOUR_CREDENTIALS_FILE_PATH>";
Credentials credentials = new Credentials();
credentials.setToken("<YOUR_BEARER_TOKEN>");
// Step 2: Configure the vault with required parameters
VaultConfig vaultConfig = new VaultConfig();
vaultConfig.setVaultId("<YOUR_VAULT_ID>");
vaultConfig.setClusterId("<YOUR_CLUSTER_ID>");
vaultConfig.setEnv(Env.PROD);
vaultConfig.setCredentials(credentials);
// Step 3: Create Skyflow client instance with error logging
Skyflow skyflowClient = Skyflow.builder()
.setLogLevel(LogLevel.ERROR)
.addVaultConfig(vaultConfig)
.build();
// Step 4: Prepare the record to update, identified by its skyflow ID
Map<String, Object> data = new HashMap<>();
data.put("<YOUR_COLUMN_NAME_1>", "<YOUR_NEW_VALUE_1>");
UpdateRequestRecord updateRecord = UpdateRequestRecord.builder()
.skyflowId("<YOUR_SKYFLOW_ID>")
.data(data)
.build();
List<UpdateRequestRecord> records = new ArrayList<>();
records.add(updateRecord);
// Step 5: Build and execute the update request.
// updateType accepts UpdateType.UPDATE (default) or UpdateType.REPLACE.
UpdateRequest request = UpdateRequest.builder()
.tableName("<YOUR_TABLE_NAME>")
.records(records)
.updateType(UpdateType.REPLACE)
.build();
UpdateResponse response = skyflowClient.vault().update(request);
// Step 6: Read the outcome. A record succeeded when its error is null.
for (UpdateResponseRecord record : response.getRecords()) {
if (record.getError() == null) {
System.out.println("data" + record.getTokens());
System.out.printf("update: %s -> skyflowId=%s%n", record.getTableName(), record.getSkyflowId());
} else {
System.out.printf("update failed (%d): %s%n", record.getHttpCode(), record.getError());
}
}
} catch (SkyflowException e) {
// Step 7: Handle any errors that occur during the process
System.err.println("Error in update operation:\t" + e.getMessage());
}
}
}