All of lore.kernel.org
 help / color / mirror / Atom feed
* Perhaps a missing dependancy in the makefiles
@ 2016-05-04 16:27 Willem Jan Withagen
  2016-05-06  4:57 ` kefu chai
  0 siblings, 1 reply; 4+ messages in thread
From: Willem Jan Withagen @ 2016-05-04 16:27 UTC (permalink / raw)
  To: Ceph Development

Hi,

Everytime I run a parallel make on the full tree I get the following
complaint:
In file included from db/builder.cc:16:
In file included from ./db/compaction_iterator.h:14:
In file included from ./db/compaction.h:13:
./util/mutable_cf_options.h:28:21: error: no member named
'soft_pending_compaction_bytes_limit' in
      'rocksdb::Options'; did you mean
'hard_pending_compaction_bytes_limit'?
            options.soft_pending_compaction_bytes_limit),
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                    hard_pending_compaction_bytes_limit

Then I just run along with a single threaded make, and everything
completes just fine.

So that is probably a missing dependency for either db/builder.cc, or
./util/mutable_cf_options.h.

Suggestions on how to fix this?

Thanx,
--WjW


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Perhaps a missing dependancy in the makefiles
  2016-05-04 16:27 Perhaps a missing dependancy in the makefiles Willem Jan Withagen
@ 2016-05-06  4:57 ` kefu chai
  2016-05-06  7:28   ` Willem Jan Withagen
  0 siblings, 1 reply; 4+ messages in thread
From: kefu chai @ 2016-05-06  4:57 UTC (permalink / raw)
  To: Willem Jan Withagen; +Cc: Ceph Development

On Thu, May 5, 2016 at 12:27 AM, Willem Jan Withagen <wjw@digiware.nl> wrote:
> Hi,
>
> Everytime I run a parallel make on the full tree I get the following
> complaint:
> In file included from db/builder.cc:16:
> In file included from ./db/compaction_iterator.h:14:
> In file included from ./db/compaction.h:13:
> ./util/mutable_cf_options.h:28:21: error: no member named
> 'soft_pending_compaction_bytes_limit' in
>       'rocksdb::Options'; did you mean
> 'hard_pending_compaction_bytes_limit'?
>             options.soft_pending_compaction_bytes_limit),
>                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>                     hard_pending_compaction_bytes_limit
>
> Then I just run along with a single threaded make, and everything
> completes just fine.
>
> So that is probably a missing dependency for either db/builder.cc, or
> ./util/mutable_cf_options.h.
>
> Suggestions on how to fix this?

Willem, not sure what is going on in your tree. but rocksdb::Options does
have this member variables: it is inherited from its parent class
ColumnFamilyOptions.

>
> Thanx,
> --WjW
>
> --
> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Regards
Kefu Chai

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Perhaps a missing dependancy in the makefiles
  2016-05-06  4:57 ` kefu chai
@ 2016-05-06  7:28   ` Willem Jan Withagen
  2016-05-09 16:26     ` Willem Jan Withagen
  0 siblings, 1 reply; 4+ messages in thread
From: Willem Jan Withagen @ 2016-05-06  7:28 UTC (permalink / raw)
  To: kefu chai; +Cc: Ceph Development

On 6-5-2016 06:57, kefu chai wrote:
> On Thu, May 5, 2016 at 12:27 AM, Willem Jan Withagen <wjw@digiware.nl> wrote:
>> Hi,
>>
>> Everytime I run a parallel make on the full tree I get the following
>> complaint:
>> In file included from db/builder.cc:16:
>> In file included from ./db/compaction_iterator.h:14:
>> In file included from ./db/compaction.h:13:
>> ./util/mutable_cf_options.h:28:21: error: no member named
>> 'soft_pending_compaction_bytes_limit' in
>>       'rocksdb::Options'; did you mean
>> 'hard_pending_compaction_bytes_limit'?
>>             options.soft_pending_compaction_bytes_limit),
>>                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>                     hard_pending_compaction_bytes_limit
>>
>> Then I just run along with a single threaded make, and everything
>> completes just fine.
>>
>> So that is probably a missing dependency for either db/builder.cc, or
>> ./util/mutable_cf_options.h.
>>
>> Suggestions on how to fix this?
>
> Willem, not sure what is going on in your tree. but rocksdb::Options does
> have this member variables: it is inherited from its parent class
> ColumnFamilyOptions.

Oke, thanx for the confirmation.

Well the "joke" is that a next run continuing where it left off makes it to
the end, without any hickups...
And yes, a run on CentOS with the Ceph/Ceph tree does not have this problem.
Perhaps that my packages installed rockdb throws dirt into the equation...


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Perhaps a missing dependancy in the makefiles
  2016-05-06  7:28   ` Willem Jan Withagen
@ 2016-05-09 16:26     ` Willem Jan Withagen
  0 siblings, 0 replies; 4+ messages in thread
From: Willem Jan Withagen @ 2016-05-09 16:26 UTC (permalink / raw)
  To: kefu chai; +Cc: Ceph Development

On 6-5-2016 09:28, Willem Jan Withagen wrote:
> On 6-5-2016 06:57, kefu chai wrote:
>> On Thu, May 5, 2016 at 12:27 AM, Willem Jan Withagen <wjw@digiware.nl>
>> wrote:
>>> Hi,
>>>
>>> Everytime I run a parallel make on the full tree I get the following
>>> complaint:
>>> In file included from db/builder.cc:16:
>>> In file included from ./db/compaction_iterator.h:14:
>>> In file included from ./db/compaction.h:13:
>>> ./util/mutable_cf_options.h:28:21: error: no member named
>>> 'soft_pending_compaction_bytes_limit' in
>>>       'rocksdb::Options'; did you mean
>>> 'hard_pending_compaction_bytes_limit'?
>>>             options.soft_pending_compaction_bytes_limit),
>>>                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>>                     hard_pending_compaction_bytes_limit
>>>
>>> Then I just run along with a single threaded make, and everything
>>> completes just fine.
>>>
>>> So that is probably a missing dependency for either db/builder.cc, or
>>> ./util/mutable_cf_options.h.
>>>
>>> Suggestions on how to fix this?
>>
>> Willem, not sure what is going on in your tree. but rocksdb::Options does
>> have this member variables: it is inherited from its parent class
>> ColumnFamilyOptions.
> 
> Oke, thanx for the confirmation.
> 
> Well the "joke" is that a next run continuing where it left off makes it to
> the end, without any hickups...
> And yes, a run on CentOS with the Ceph/Ceph tree does not have this
> problem.
> Perhaps that my packages installed rockdb throws dirt into the equation...

It seems a fresh checkout "fixed" this.

--WjW


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-05-09 16:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-04 16:27 Perhaps a missing dependancy in the makefiles Willem Jan Withagen
2016-05-06  4:57 ` kefu chai
2016-05-06  7:28   ` Willem Jan Withagen
2016-05-09 16:26     ` Willem Jan Withagen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.