Пример #1
0
  def test_many_hashes(self):
    hashes = []
    length = 2 ** 10

    for i in range(256):
      object_id = random_object_id()
      memory_buffer = self.plasma_client.create(object_id, length)
      for j in range(length):
        memory_buffer[j] = chr(i)
      self.plasma_client.seal(object_id)
      hashes.append(self.plasma_client.hash(object_id))

    # Create objects of varying length. Each pair has two bits different.
    for i in range(length):
      object_id = random_object_id()
      memory_buffer = self.plasma_client.create(object_id, length)
      for j in range(length):
        memory_buffer[j] = chr(0)
      memory_buffer[i] = chr(1)
      self.plasma_client.seal(object_id)
      hashes.append(self.plasma_client.hash(object_id))

    # Create objects of varying length, all with value 0.
    for i in range(length):
      object_id = random_object_id()
      memory_buffer = self.plasma_client.create(object_id, i)
      for j in range(i):
        memory_buffer[j] = chr(0)
      self.plasma_client.seal(object_id)
      hashes.append(self.plasma_client.hash(object_id))

    # Check that all hashes were unique.
    self.assertEqual(len(set(hashes)), 256 + length + length)
Пример #2
0
  def test_fetch_multiple(self):
    for _ in range(20):
      # Create two objects and a third fake one that doesn't exist.
      object_id1, memory_buffer1, metadata1 = create_object(self.client1, 2000, 2000)
      missing_object_id = random_object_id()
      object_id2, memory_buffer2, metadata2 = create_object(self.client1, 2000, 2000)
      object_ids = [object_id1, missing_object_id, object_id2]
      # Fetch the objects from the other plasma store. The second object ID
      # should timeout since it does not exist.
      # TODO(rkn): Right now we must wait for the object table to be updated.
      while (not self.client2.contains(object_id1)) or (not self.client2.contains(object_id2)):
        self.client2.fetch(object_ids)
      # Compare the buffers of the objects that do exist.
      assert_get_object_equal(self, self.client1, self.client2, object_id1,
                              memory_buffer=memory_buffer1, metadata=metadata1)
      assert_get_object_equal(self, self.client1, self.client2, object_id2,
                              memory_buffer=memory_buffer2, metadata=metadata2)
      # Fetch in the other direction. The fake object still does not exist.
      self.client1.fetch(object_ids)
      assert_get_object_equal(self, self.client2, self.client1, object_id1,
                              memory_buffer=memory_buffer1, metadata=metadata1)
      assert_get_object_equal(self, self.client2, self.client1, object_id2,
                              memory_buffer=memory_buffer2, metadata=metadata2)

    # Check that we can call fetch with duplicated object IDs.
    object_id3 = random_object_id()
    self.client1.fetch([object_id3, object_id3])
    object_id4, memory_buffer4, metadata4 = create_object(self.client1, 2000, 2000)
    time.sleep(0.1)
    # TODO(rkn): Right now we must wait for the object table to be updated.
    while not self.client2.contains(object_id4):
      self.client2.fetch([object_id3, object_id3, object_id4, object_id4])
    assert_get_object_equal(self, self.client2, self.client1, object_id4,
                            memory_buffer=memory_buffer4, metadata=metadata4)
Пример #3
0
 def test_task_default_resources(self):
     task1 = photon.Task(random_driver_id(), random_function_id(),
                         [random_object_id()], 0, random_task_id(), 0)
     self.assertEqual(task1.required_resources(), [1.0, 0.0])
     task2 = photon.Task(random_driver_id(),
                         random_function_id(), [random_object_id()], 0,
                         random_task_id(), 0, [1.0, 2.0])
     self.assertEqual(task2.required_resources(), [1.0, 2.0])
Пример #4
0
  def test_subscribe_deletions(self):
    # Subscribe to notifications from the Plasma Store. We use plasma_client2
    # to make sure that all used objects will get evicted properly.
    sock = self.plasma_client2.subscribe()
    for i in [1, 10, 100, 1000, 10000, 100000]:
      object_ids = [random_object_id() for _ in range(i)]
      # Add 1 to the sizes to make sure we have nonzero object sizes.
      metadata_sizes = [np.random.randint(1000) + 1 for _ in range(i)]
      data_sizes = [np.random.randint(1000) + 1 for _ in range(i)]
      for j in range(i):
        x = self.plasma_client2.create(object_ids[j], size=data_sizes[j],
                                  metadata=bytearray(np.random.bytes(metadata_sizes[j])))
        self.plasma_client2.seal(object_ids[j])
      del x
      # Check that we received notifications for creating all of the objects.
      for j in range(i):
        recv_objid, recv_dsize, recv_msize = self.plasma_client2.get_next_notification()
        self.assertEqual(object_ids[j], recv_objid)
        self.assertEqual(data_sizes[j], recv_dsize)
        self.assertEqual(metadata_sizes[j], recv_msize)

      # Check that we receive notifications for deleting all objects, as we
      # evict them.
      for j in range(i):
        self.assertEqual(self.plasma_client2.evict(1), data_sizes[j] + metadata_sizes[j])
        recv_objid, recv_dsize, recv_msize = self.plasma_client2.get_next_notification()
        self.assertEqual(object_ids[j], recv_objid)
        self.assertEqual(-1, recv_dsize)
        self.assertEqual(-1, recv_msize)

    # Test multiple deletion notifications. The first 9 object IDs have size 0,
    # and the last has a nonzero size. When Plasma evicts 1 byte, it will evict
    # all objects, so we should receive deletion notifications for each.
    num_object_ids = 10
    object_ids = [random_object_id() for _ in range(num_object_ids)]
    metadata_sizes = [0] * (num_object_ids - 1)
    data_sizes = [0] * (num_object_ids - 1)
    metadata_sizes.append(np.random.randint(1000))
    data_sizes.append(np.random.randint(1000))
    for i in range(num_object_ids):
      x = self.plasma_client2.create(object_ids[i], size=data_sizes[i],
                                metadata=bytearray(np.random.bytes(metadata_sizes[i])))
      self.plasma_client2.seal(object_ids[i])
    del x
    for i in range(num_object_ids):
      recv_objid, recv_dsize, recv_msize = self.plasma_client2.get_next_notification()
      self.assertEqual(object_ids[i], recv_objid)
      self.assertEqual(data_sizes[i], recv_dsize)
      self.assertEqual(metadata_sizes[i], recv_msize)
    self.assertEqual(self.plasma_client2.evict(1), data_sizes[-1] + metadata_sizes[-1])
    for i in range(num_object_ids):
      recv_objid, recv_dsize, recv_msize = self.plasma_client2.get_next_notification()
      self.assertEqual(object_ids[i], recv_objid)
      self.assertEqual(-1, recv_dsize)
      self.assertEqual(-1, recv_msize)
Пример #5
0
 def test_contains(self):
   fake_object_ids = [random_object_id() for _ in range(100)]
   real_object_ids = [random_object_id() for _ in range(100)]
   for object_id in real_object_ids:
     self.assertFalse(self.plasma_client.contains(object_id))
     memory_buffer = self.plasma_client.create(object_id, 100)
     self.plasma_client.seal(object_id)
     self.assertTrue(self.plasma_client.contains(object_id))
   for object_id in fake_object_ids:
     self.assertFalse(self.plasma_client.contains(object_id))
   for object_id in real_object_ids:
     self.assertTrue(self.plasma_client.contains(object_id))
Пример #6
0
    def test_fetch(self):
        for _ in range(10):
            # Create an object.
            object_id1, memory_buffer1, metadata1 = create_object(
                self.client1, 2000, 2000)
            self.client1.fetch([object_id1])
            self.assertEqual(self.client1.contains(object_id1), True)
            self.assertEqual(self.client2.contains(object_id1), False)
            # Fetch the object from the other plasma manager.
            # TODO(rkn): Right now we must wait for the object table to be updated.
            while not self.client2.contains(object_id1):
                self.client2.fetch([object_id1])
            # Compare the two buffers.
            assert_get_object_equal(self,
                                    self.client1,
                                    self.client2,
                                    object_id1,
                                    memory_buffer=memory_buffer1,
                                    metadata=metadata1)

        # Test that we can call fetch on object IDs that don't exist yet.
        object_id2 = random_object_id()
        self.client1.fetch([object_id2])
        self.assertEqual(self.client1.contains(object_id2), False)
        memory_buffer2, metadata2 = create_object_with_id(
            self.client2, object_id2, 2000, 2000)
        # # Check that the object has been fetched.
        # self.assertEqual(self.client1.contains(object_id2), True)
        # Compare the two buffers.
        # assert_get_object_equal(self, self.client1, self.client2, object_id2,
        #                         memory_buffer=memory_buffer2, metadata=metadata2)

        # Test calling the same fetch request a bunch of times.
        object_id3 = random_object_id()
        self.assertEqual(self.client1.contains(object_id3), False)
        self.assertEqual(self.client2.contains(object_id3), False)
        for _ in range(10):
            self.client1.fetch([object_id3])
            self.client2.fetch([object_id3])
        memory_buffer3, metadata3 = create_object_with_id(
            self.client1, object_id3, 2000, 2000)
        for _ in range(10):
            self.client1.fetch([object_id3])
            self.client2.fetch([object_id3])
        #TODO(rkn): Right now we must wait for the object table to be updated.
        while not self.client2.contains(object_id3):
            self.client2.fetch([object_id3])
        assert_get_object_equal(self,
                                self.client1,
                                self.client2,
                                object_id3,
                                memory_buffer=memory_buffer3,
                                metadata=metadata3)
Пример #7
0
    def test_hash(self):
        # Check the hash of an object that doesn't exist.
        object_id1 = random_object_id()
        h = self.plasma_client.hash(object_id1)

        length = 1000
        # Create a random object, and check that the hash function always returns
        # the same value.
        metadata = generate_metadata(length)
        memory_buffer = self.plasma_client.create(object_id1, length, metadata)
        for i in range(length):
            memory_buffer[i] = chr(i % 256)
        self.plasma_client.seal(object_id1)
        self.assertEqual(self.plasma_client.hash(object_id1),
                         self.plasma_client.hash(object_id1))

        # Create a second object with the same value as the first, and check that
        # their hashes are equal.
        object_id2 = random_object_id()
        memory_buffer = self.plasma_client.create(object_id2, length, metadata)
        for i in range(length):
            memory_buffer[i] = chr(i % 256)
        self.plasma_client.seal(object_id2)
        self.assertEqual(self.plasma_client.hash(object_id1),
                         self.plasma_client.hash(object_id2))

        # Create a third object with a different value from the first two, and
        # check that its hash is different.
        object_id3 = random_object_id()
        metadata = generate_metadata(length)
        memory_buffer = self.plasma_client.create(object_id3, length, metadata)
        for i in range(length):
            memory_buffer[i] = chr((i + 1) % 256)
        self.plasma_client.seal(object_id3)
        self.assertNotEqual(self.plasma_client.hash(object_id1),
                            self.plasma_client.hash(object_id3))

        # Create a fourth object with the same value as the third, but different
        # metadata. Check that its hash is different from any of the previous
        # three.
        object_id4 = random_object_id()
        metadata4 = generate_metadata(length)
        memory_buffer = self.plasma_client.create(object_id4, length,
                                                  metadata4)
        for i in range(length):
            memory_buffer[i] = chr((i + 1) % 256)
        self.plasma_client.seal(object_id4)
        self.assertNotEqual(self.plasma_client.hash(object_id1),
                            self.plasma_client.hash(object_id4))
        self.assertNotEqual(self.plasma_client.hash(object_id3),
                            self.plasma_client.hash(object_id4))
Пример #8
0
  def test_get(self):
    num_object_ids = 100
    # Test timing out of get with various timeouts.
    for timeout in [0, 10, 100, 1000]:
      object_ids = [random_object_id() for _ in range(num_object_ids)]
      results = self.plasma_client.get(object_ids, timeout_ms=timeout)
      self.assertEqual(results, num_object_ids * [None])

    data_buffers = []
    metadata_buffers = []
    for i in range(num_object_ids):
      if i % 2 == 0:
        data_buffer, metadata_buffer = create_object_with_id(self.plasma_client, object_ids[i], 2000, 2000)
        data_buffers.append(data_buffer)
        metadata_buffers.append(metadata_buffer)

    # Test timing out from some but not all get calls with various timeouts.
    for timeout in [0, 10, 100, 1000]:
      data_results = self.plasma_client.get(object_ids, timeout_ms=timeout)
      metadata_results = self.plasma_client.get(object_ids, timeout_ms=timeout)
      for i in range(num_object_ids):
        if i % 2 == 0:
          self.assertTrue(plasma.buffers_equal(data_buffers[i // 2], data_results[i]))
          # TODO(rkn): We should compare the metadata as well. But currently the
          # types are different (e.g., memoryview versus bytearray).
          # self.assertTrue(plasma.buffers_equal(metadata_buffers[i // 2], metadata_results[i]))
        else:
          self.assertIsNone(results[i])
Пример #9
0
  def test_delayed_start(self):
    num_objects = 10
    # Create some objects using one client.
    object_ids = [random_object_id() for _ in range(num_objects)]
    for i in range(10):
      create_object_with_id(self.client, object_ids[i], 2000, 2000)

    # Wait until the objects have been sealed in the store.
    ready, waiting = self.client.wait(object_ids, num_returns=num_objects)
    self.assertEqual(set(ready), set(object_ids))
    self.assertEqual(waiting, [])

    # Start a second plasma manager attached to the same store.
    manager_name, self.p5, self.port2 = plasma.start_plasma_manager(self.store_name, self.redis_address, use_valgrind=USE_VALGRIND)
    self.processes_to_kill.append(self.p5)

    # Check that the second manager knows about existing objects.
    client2 = plasma.PlasmaClient(self.store_name, manager_name)
    ready, waiting = [], object_ids
    while True:
      ready, waiting = client2.wait(object_ids, num_returns=num_objects, timeout=0)
      if len(ready) == len(object_ids):
        break

    self.assertEqual(set(ready), set(object_ids))
    self.assertEqual(waiting, [])
Пример #10
0
  def test_stresstest(self):
    a = time.time()
    object_ids = []
    for i in range(10000): # TODO(pcm): increase this to 100000
      object_id = random_object_id()
      object_ids.append(object_id)
      self.client1.create(object_id, 1)
      self.client1.seal(object_id)
    for object_id in object_ids:
      self.client1.transfer("127.0.0.1", self.port2, object_id)
    b = time.time() - a

    print("it took", b, "seconds to put and transfer the objects")
Пример #11
0
 def test_create_existing(self):
   # This test is partially used to test the code path in which we create an
   # object with an ID that already exists
   length = 100
   for _ in range(1000):
     object_id = random_object_id()
     self.plasma_client.create(object_id, length, generate_metadata(length))
     try:
       val = self.plasma_client.create(object_id, length, generate_metadata(length))
     except plasma.plasma_object_exists_error as e:
       pass
     else:
       self.assertTrue(False)
Пример #12
0
 def test_create(self):
   # Create an object id string.
   object_id = random_object_id()
   # Create a new buffer and write to it.
   length = 50
   memory_buffer = self.plasma_client.create(object_id, length)
   for i in range(length):
     memory_buffer[i] = chr(i % 256)
   # Seal the object.
   self.plasma_client.seal(object_id)
   # Get the object.
   memory_buffer = self.plasma_client.get([object_id])[0]
   for i in range(length):
     self.assertEqual(memory_buffer[i], chr(i % 256))
Пример #13
0
 def test_subscribe(self):
   # Subscribe to notifications from the Plasma Store.
   sock = self.plasma_client.subscribe()
   for i in [1, 10, 100, 1000, 10000, 100000]:
     object_ids = [random_object_id() for _ in range(i)]
     metadata_sizes = [np.random.randint(1000) for _ in range(i)]
     data_sizes = [np.random.randint(1000) for _ in range(i)]
     for j in range(i):
       self.plasma_client.create(object_ids[j], size=data_sizes[j],
                                 metadata=bytearray(np.random.bytes(metadata_sizes[j])))
       self.plasma_client.seal(object_ids[j])
     # Check that we received notifications for all of the objects.
     for j in range(i):
       recv_objid, recv_dsize, recv_msize = self.plasma_client.get_next_notification()
       self.assertEqual(object_ids[j], recv_objid)
       self.assertEqual(data_sizes[j], recv_dsize)
       self.assertEqual(metadata_sizes[j], recv_msize)
Пример #14
0
 def test_create_with_metadata(self):
   for length in range(1000):
     # Create an object id string.
     object_id = random_object_id()
     # Create a random metadata string.
     metadata = generate_metadata(length)
     # Create a new buffer and write to it.
     memory_buffer = self.plasma_client.create(object_id, length, metadata)
     for i in range(length):
       memory_buffer[i] = chr(i % 256)
     # Seal the object.
     self.plasma_client.seal(object_id)
     # Get the object.
     memory_buffer = self.plasma_client.get([object_id])[0]
     for i in range(length):
       self.assertEqual(memory_buffer[i], chr(i % 256))
     # Get the metadata.
     metadata_buffer = self.plasma_client.get_metadata([object_id])[0]
     self.assertEqual(len(metadata), len(metadata_buffer))
     for i in range(len(metadata)):
       self.assertEqual(chr(metadata[i]), metadata_buffer[i])
Пример #15
0
 def test_illegal_functionality(self):
   # Create an object id string.
   object_id = random_object_id()
   # Create a new buffer and write to it.
   length = 1000
   memory_buffer = self.plasma_client.create(object_id, length)
   # Make sure we cannot access memory out of bounds.
   self.assertRaises(Exception, lambda : memory_buffer[length])
   # Seal the object.
   self.plasma_client.seal(object_id)
   # This test is commented out because it currently fails.
   # # Make sure the object is ready only now.
   # def illegal_assignment():
   #   memory_buffer[0] = chr(0)
   # self.assertRaises(Exception, illegal_assignment)
   # Get the object.
   memory_buffer = self.plasma_client.get([object_id])[0]
   # Make sure the object is read only.
   def illegal_assignment():
     memory_buffer[0] = chr(0)
   self.assertRaises(Exception, illegal_assignment)
Пример #16
0
    def test_illegal_put(self):
        """
    Test doing a put at the same object ID, but with different object data. The
    first put should succeed. The second put should cause the plasma manager to
    exit with a fatal error.
    """
        if USE_VALGRIND:
            # Don't run this test when we are using valgrind because when processes
            # die without freeing up their state, valgrind complains.
            return
        # Create and seal the first object.
        length = 1000
        object_id = random_object_id()
        memory_buffer1 = self.client1.create(object_id, length)
        for i in range(length):
            memory_buffer1[i] = chr(i % 256)
        self.client1.seal(object_id)
        # Create and seal the second object. It has all the same data as the first
        # object, with one bit flipped.
        memory_buffer2 = self.client2.create(object_id, length)
        for i in range(length):
            j = i
            if j == 0:
                j += 1
            memory_buffer2[i] = chr(j % 256)
        self.client2.seal(object_id)
        # Give the second manager some time to complete the seal, then make sure it
        # exited.
        time_left = 100
        while time_left > 0:
            if self.p5.poll() != None:
                self.processes_to_kill.remove(self.p5)
                break
            time_left -= 0.1
            time.sleep(0.1)

        print("Time waiting for plasma manager to fail = {:.2}".format(
            100 - time_left))
        self.assertNotEqual(self.p5.poll(), None)
Пример #17
0
  def test_evict(self):
    client = self.plasma_client2
    object_id1 = random_object_id()
    b1 = client.create(object_id1, 1000)
    client.seal(object_id1)
    del b1
    self.assertEqual(client.evict(1), 1000)

    object_id2 = random_object_id()
    object_id3 = random_object_id()
    b2 = client.create(object_id2, 999)
    b3 = client.create(object_id3, 998)
    client.seal(object_id3)
    del b3
    self.assertEqual(client.evict(1000), 998)

    object_id4 = random_object_id()
    b4 = client.create(object_id4, 997)
    client.seal(object_id4)
    del b4
    client.seal(object_id2)
    del b2
    self.assertEqual(client.evict(1), 997)
    self.assertEqual(client.evict(1), 999)

    object_id5 = random_object_id()
    object_id6 = random_object_id()
    object_id7 = random_object_id()
    b5 = client.create(object_id5, 996)
    b6 = client.create(object_id6, 995)
    b7 = client.create(object_id7, 994)
    client.seal(object_id5)
    client.seal(object_id6)
    client.seal(object_id7)
    del b5
    del b6
    del b7
    self.assertEqual(client.evict(2000), 996 + 995 + 994)
Пример #18
0
 def test_illegal_functionality(self):
   # Create an object id string.
   object_id = random_object_id()
Пример #19
0
  def test_wait(self):
    # Test timeout.
    obj_id0 = random_object_id()
    self.client1.wait([obj_id0], timeout=100, num_returns=1)
    # If we get here, the test worked.

    # Test wait if local objects available.
    obj_id1 = random_object_id()
    self.client1.create(obj_id1, 1000)
    self.client1.seal(obj_id1)
    ready, waiting = self.client1.wait([obj_id1], timeout=100, num_returns=1)
    self.assertEqual(set(ready), set([obj_id1]))
    self.assertEqual(waiting, [])

    # Test wait if only one object available and only one object waited for.
    obj_id2 = random_object_id()
    self.client1.create(obj_id2, 1000)
    # Don't seal.
    ready, waiting = self.client1.wait([obj_id2, obj_id1], timeout=100, num_returns=1)
    self.assertEqual(set(ready), set([obj_id1]))
    self.assertEqual(set(waiting), set([obj_id2]))

    # Test wait if object is sealed later.
    obj_id3 = random_object_id()

    def finish():
      self.client2.create(obj_id3, 1000)
      self.client2.seal(obj_id3)

    t = threading.Timer(0.1, finish)
    t.start()
    ready, waiting = self.client1.wait([obj_id3, obj_id2, obj_id1], timeout=1000, num_returns=2)
    self.assertEqual(set(ready), set([obj_id1, obj_id3]))
    self.assertEqual(set(waiting), set([obj_id2]))

    # Test if the appropriate number of objects is shown if some objects are not ready
    ready, waiting = self.client1.wait([obj_id3, obj_id2, obj_id1], 100, 3)
    self.assertEqual(set(ready), set([obj_id1, obj_id3]))
    self.assertEqual(set(waiting), set([obj_id2]))

    # Don't forget to seal obj_id2.
    self.client1.seal(obj_id2)

    # Test calling wait a bunch of times.
    object_ids = []
    # TODO(rkn): Increasing n to 100 (or larger) will cause failures. The
    # problem appears to be that the number of timers added to the manager event
    # loop slow down the manager so much that some of the asynchronous Redis
    # commands timeout triggering fatal failure callbacks.
    n = 40
    for i in range(n * (n + 1) // 2):
      if i % 2 == 0:
        object_id, _, _ = create_object(self.client1, 200, 200)
      else:
        object_id, _, _ = create_object(self.client2, 200, 200)
      object_ids.append(object_id)
    # Try waiting for all of the object IDs on the first client.
    waiting = object_ids
    retrieved = []
    for i in range(1, n + 1):
      ready, waiting = self.client1.wait(waiting, timeout=1000, num_returns=i)
      self.assertEqual(len(ready), i)
      retrieved += ready
    self.assertEqual(set(retrieved), set(object_ids))
    ready, waiting = self.client1.wait(object_ids, timeout=1000, num_returns=len(object_ids))
    self.assertEqual(set(ready), set(object_ids))
    self.assertEqual(waiting, [])
    # Try waiting for all of the object IDs on the second client.
    waiting = object_ids
    retrieved = []
    for i in range(1, n + 1):
      ready, waiting = self.client2.wait(waiting, timeout=1000, num_returns=i)
      self.assertEqual(len(ready), i)
      retrieved += ready
    self.assertEqual(set(retrieved), set(object_ids))
    ready, waiting = self.client2.wait(object_ids, timeout=1000, num_returns=len(object_ids))
    self.assertEqual(set(ready), set(object_ids))
    self.assertEqual(waiting, [])

    # Make sure that wait returns when the requested number of object IDs are
    # available and does not wait for all object IDs to be available.
    object_ids = [random_object_id() for _ in range(9)] + [20 * b'\x00']
    object_ids_perm = object_ids[:]
    random.shuffle(object_ids_perm)
    for i in range(10):
      if i % 2 == 0:
        create_object_with_id(self.client1, object_ids_perm[i], 2000, 2000)
      else:
        create_object_with_id(self.client2, object_ids_perm[i], 2000, 2000)
      ready, waiting = self.client1.wait(object_ids, num_returns=(i + 1))
      self.assertEqual(set(ready), set(object_ids_perm[:(i + 1)]))
      self.assertEqual(set(waiting), set(object_ids_perm[(i + 1):]))