This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Total number of tables: 102 | |
| ---------------- | |
| Keyspace : alternator_obj_0 | |
| Read Count: 26 | |
| Read Latency: 0.0021153846153846153 ms | |
| Write Count: 0 | |
| Write Latency: NaN ms | |
| Pending Flushes: 0 | |
| Table: obj_0 | |
| SSTable count: 423 |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "client" : { | |
| "cluster_file" : { | |
| "path" : "/etc/foundationdb/fdb.cluster", | |
| "up_to_date" : true | |
| }, | |
| "coordinators" : { | |
| "coordinators" : [ | |
| { | |
| "address" : "10.181.159.74:5500", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <aws/core/Aws.h> | |
| #include <aws/core/utils/Outcome.h> | |
| #include <aws/dynamodb/DynamoDBClient.h> | |
| #include <aws/dynamodb/model/AttributeDefinition.h> | |
| #include <aws/dynamodb/model/KeySchemaElement.h> | |
| #include <aws/dynamodb/model/ProvisionedThroughput.h> | |
| #include <aws/dynamodb/model/ScalarAttributeType.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void UpdateItemOutcomeReceived(const Aws::DynamoDB::DynamoDBClient* sender, | |
| const Aws::DynamoDB::Model::UpdateItemRequest& request, | |
| const Aws::DynamoDB::Model::UpdateItemOutcome& outcome, | |
| const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context) | |
| { | |
| AWS_UNREFERENCED_PARAM(sender); | |
| AWS_UNREFERENCED_PARAM(request); | |
| AWS_UNREFERENCED_PARAM(context); | |
| if (!outcome.IsSuccess()) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.mycompany.app; | |
| import java.nio.channels.Channels; | |
| import java.nio.channels.ReadableByteChannel; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.FileOutputStream; | |
| import java.io.ByteArrayInputStream; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vi /etc/environment | |
| add these lines... | |
| LANG=en_US.utf-8 | |
| LC_ALL=en_US.utf-8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ip route delete default via 192.168.2.1 dev ens5f0 | |
| ip route add default via 192.168.2.15 dev ens5f0 |