Uploaded image for project: 'Ignite'
  1. Ignite
  2. IGNITE-13160

.NET: wrong affinity key registration with AffinityKeyMapped attribute

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 2.8.1
    • 2.10
    • platforms
    • None
    • .NET: Fix binary metadata registration for QueryEntity key and value types
    • Docs Required, Release Notes Required

    Description

      When QueryEntities is set alongside a custom key that utilizes the AffinityKeyMapped attribute, the field won't be taken into account for some reason. When QueryEntities configuration gets removed, all works fine, setting KeyConfiguration manually helps as well. At the same time, the BinaryType registration itself looks fine.

      After the investigation, it turned out that affinityKey field is not being registered on cache registration, and null is being cached instead. Later on Ignite correctly tries to register a custom class as a key, but it's never being updated internally case the real value is already cached.

       

      NOTE: there is a workaround - you need to specify the key configuration explicitly:

      cacheConfiguration.KeyConfiguration = new List<CacheKeyConfiguration>(1)
      {
       //affinityKey should be auto adjusted with Reflection
       new CacheKeyConfiguration(typeof(MyKey))
      };
       
      

       

      Reproducer (add to the AffinityTest.cs):

              /// <summary>
              /// Tests AffinityKeyMapped attribute should map to the same partitions
              /// for the same field value.
              /// </summary>
              [Test]
              public void TestCustomAffinity()
              {
                  IIgnite g = Ignition.GetIgnite("grid-0");
      
                  var cacheCfg = new CacheConfiguration("mycache")
                  {
                      // Without QueryEntities tests passes.
                      QueryEntities = new List<QueryEntity>()
                      {
                          new QueryEntity(typeof(MyKey), typeof(int))
                      }
                  };
                  g.GetOrCreateCache<MyKey, int>(cacheCfg);
      
                  var key1 = new MyKey {Data = "data1", AffinityKey = 1};
                  var key2 = new MyKey {Data = "data2", AffinityKey = 1};
      
                  ICacheAffinity aff = g.GetAffinity(cacheCfg.Name);
                  Assert.AreEqual(aff.GetPartition(key1), aff.GetPartition(key2));
              }
      
              public class MyKey
              {
                  [QuerySqlField]
                  public string Data { get; set; }
                  [AffinityKeyMapped]
                  public long AffinityKey { get; set; }
              }
      

      Attachments

        Issue Links

          Activity

            People

              ptupitsyn Pavel Tupitsyn
              ashapkin Alexandr Shapkin
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Time Tracking

                  Estimated:
                  Original Estimate - Not Specified
                  Not Specified
                  Remaining:
                  Remaining Estimate - 0h
                  0h
                  Logged:
                  Time Spent - 20m
                  20m