Ejemplo n.º 1
0
 protected Map<List<String>, byte[]> readConf(Transaction tr) {
   tr.options().setAccessSystemKeys();
   byte[] confKey = confSubspace.getKey();
   List<KeyValue> kvs = tr.getRange(Range.startsWith(confKey)).asList().get();
   Map<List<String>, byte[]> result = new HashMap<>();
   for (KeyValue kv : kvs) {
     byte[] tupleBytes = new byte[kv.getKey().length - confKey.length];
     System.arraycopy(kv.getKey(), confKey.length, tupleBytes, 0, tupleBytes.length);
     // TODO: It's a shame that there isn't a fromBytes with index offets.
     Tuple2 tuple = Tuple2.fromBytes(tupleBytes);
     List<String> list = new ArrayList<>(tuple.size());
     for (int i = 0; i < tuple.size(); i++) {
       if (BINARY_STRINGS) {
         try {
           list.add(new String(tuple.getBytes(i), "UTF-8"));
         } catch (UnsupportedEncodingException ex) {
           throw new AkibanInternalException("Error decoding binary string", ex);
         }
       } else {
         list.add(tuple.getString(i));
       }
     }
     result.put(list, kv.getValue());
   }
   // Initiate a watch (from this same transaction) for changes to the key
   // used to signal configuration changes.
   tr.watch(confChangesSubspace.getKey())
       .onReady(
           new Runnable() {
             @Override
             public void run() {
               confChanged = true;
               notifyBackground();
             }
           });
   return result;
 }
Ejemplo n.º 2
0
 public void deleteLongMetric(Transaction tr, String name) {
   tr.clear(Range.startsWith(dataSubspace.pack(tupleFrom(LONG_TYPE, name))));
   tr.clear(Range.startsWith(confSubspace.pack(tupleFrom(LONG_TYPE, name))));
 }
Ejemplo n.º 3
0
 public void deleteBooleanMetric(Transaction tr, String name) {
   tr.clear(Range.startsWith(dataSubspace.pack(tupleFrom(BOOLEAN_TYPE, name))));
   tr.clear(Range.startsWith(confSubspace.pack(tupleFrom(BOOLEAN_TYPE, name))));
 }