我正在通过REST API运行PigScript,我想将我的Pig输出存储到另一个hadoop集群。我有什么方法可以将PigStorage设置为其他一些hdfs。
答案 0 :(得分:2)
您可以使用distcp
从一个hdf复制到另一个。
$ hadoop distcp hdfs://namenode1/foo hdfs://namenode2/bar
用于并行地从hadoop文件系统复制大量数据。
public void setCharacteristicNotification(BluetoothGattCharacteristic bluetoothgattcharacteristic, boolean flag)
{
if(mBluetoothAdapter == null || mBluetoothGatt == null)
{
Log.w(TAG, "BluetoothAdapter not initialized");
} else
{
mBluetoothGatt.setCharacteristicNotification(bluetoothgattcharacteristic, flag);
BluetoothGattDescriptor bluetoothgattdescriptor = bluetoothgattcharacteristic.getDescriptor(UUID.fromString(SampleGattAttributes.CLIENT_CHARACTERISTIC_CONFIG));
if(bluetoothgattdescriptor != null)
{ bluetoothgattdescriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
mBluetoothGatt.writeDescriptor(bluetoothgattdescriptor);
return;
}
}
}