Re: zkfuse

2010-09-27 Thread Patrick Hunt
Sounds like you have an old version of autoconf, try upgrading, see similar
issue here:
http://www.mail-archive.com/thrift-u...@incubator.apache.org/msg00673.html

<http://www.mail-archive.com/thrift-u...@incubator.apache.org/msg00673.html>
Patrick

2010/9/24 俊贤 

> Hi mahadev,
>
> My os is Linux localhost.localdomain 2.6.18-164.el5 #1 SMP Thu Sep 3
> 03:33:56 EDT 2009 i686 i686 i386 GNU/Linux
>
>
>  The errror occured when I run the autoreconf -if command reminded in the
> README file.
>
> follow the error info:
>
> configure.ac:51: error: possibly undefined macro: AC_TYPE_INT64_T
> configure.ac:58: error: possibly undefined macro: AC_TYPE_UINT32_T
> configure.ac:59: error: possibly undefined macro: AC_TYPE_UINT64_T
> configure.ac:60: error: possibly undefined macro: AC_TYPE_UINT8_T
>
>
> Thanks you!
> JunX
>
>
>
> junxian
> 
> From: Mahadev Konar [maha...@yahoo-inc.com]
> Sent: 25 September 2010 06:19
> To: zookeeper-user@hadoop.apache.org
> Subject: Re: zkfuse
>
> Hi Jun,
>  I havent seen people using zkfuse recently. What kind of issues are you
> facing?
>
> Thanks
> mahadev
>
> This email (including any attachments) is confidential and may be legally
> privileged. If you received this email in error, please delete it
> immediately and do not copy it or use it for any purpose or disclose its
> contents to any other person. Thank you.
>
>
> 本电邮(包括任何附件)可能含有机密资料并受法律保护。如您不是正确的收件人,请您立即删除本邮件。请不要将本电邮进行复制并用作任何其他用途、或透露本邮件之内容。谢谢。
>


RE: zkfuse

2010-09-24 Thread 俊贤
Hi mahadev,

My os is Linux localhost.localdomain 2.6.18-164.el5 #1 SMP Thu Sep 3 03:33:56 
EDT 2009 i686 i686 i386 GNU/Linux


 The errror occured when I run the autoreconf -if command reminded in the 
README file.

follow the error info:

configure.ac:51: error: possibly undefined macro: AC_TYPE_INT64_T
configure.ac:58: error: possibly undefined macro: AC_TYPE_UINT32_T
configure.ac:59: error: possibly undefined macro: AC_TYPE_UINT64_T
configure.ac:60: error: possibly undefined macro: AC_TYPE_UINT8_T


Thanks you!
JunX



junxian

From: Mahadev Konar [maha...@yahoo-inc.com]
Sent: 25 September 2010 06:19
To: zookeeper-user@hadoop.apache.org
Subject: Re: zkfuse

Hi Jun,
  I havent seen people using zkfuse recently. What kind of issues are you
facing?

Thanks
mahadev

This email (including any attachments) is confidential and may be legally 
privileged. If you received this email in error, please delete it immediately 
and do not copy it or use it for any purpose or disclose its contents to any 
other person. Thank you.

本电邮(包括任何附件)可能含有机密资料并受法律保护。如您不是正确的收件人,请您立即删除本邮件。请不要将本电邮进行复制并用作任何其他用途、或透露本邮件之内容。谢谢。


Re: zkfuse

2010-09-24 Thread Mahadev Konar
Hi Jun,
  I havent seen people using zkfuse recently. What kind of issues are you
facing?

Thanks
mahadev


On 9/19/10 6:46 PM, "俊贤"  wrote:

> Hi guys,
> Has anyone succeeded in installing the zkfuse?
> 
> 
> This email (including any attachments) is confidential and may be legally
> privileged. If you received this email in error, please delete it immediately
> and do not copy it or use it for any purpose or disclose its contents to any
> other person. Thank you.
> 
> 本电邮(包括任何附件)可能含有机密资料并受法律保护。如您不是正确的收件人,请您立即删除本邮件。
> 请不要将本电邮进行复制并用作任何其他用途、或透露本邮件之内容。谢谢。
> 



zkfuse

2010-09-19 Thread 俊贤
Hi guys,
Has anyone succeeded in installing the zkfuse?


This email (including any attachments) is confidential and may be legally 
privileged. If you received this email in error, please delete it immediately 
and do not copy it or use it for any purpose or disclose its contents to any 
other person. Thank you.

本电邮(包括任何附件)可能含有机密资料并受法律保护。如您不是正确的收件人,请您立即删除本邮件。请不要将本电邮进行复制并用作任何其他用途、或透露本邮件之内容。谢谢。


Re: zkfuse

2009-11-24 Thread Maarten Koopmans

Hi Mahadev,

Quite simple: it will function as the locking/versioning back end for a 
custom WebDAV daemon (that stores its data in an internal cloud, i.e. 
Eucalyptus/Walrus).


So a user "joe" that has a file /foo/bar would translate to:

/(sha1(joe))/foo/bar  - file bar
/(sha1(joe))/foo/bar/versions - pointer to a file containing version 
history (sha1 pointers)
/(sha1(joe))/foo/bar/current  - file bar current version pointer, a sha1 
pointing directly to a file

/(sha1(joe))/foo/bar/__locks/ - dir containing locks for file bar in dir foo

Note that all files will be transparently encrypted and versioned and 
renamed to their sha1 - and then stored in an S3-like flat object space.


ZooKeeper reconstructs the filesystem layout + locking, and should be 
able to do that for lots (100,000s) of users. I am halfway a C binding 
(to REBOL, why REBOL? Shortest route to success for me.), but zkfuse is 
fast and functional enough (per WebDAV server instance). So I'll stick 
to zkfuse, I have so much other stuff to do. And I can always optimize 
in the background. The WebDAV server is custom written (in the process 
of being so...) and will provide the illusion of a user mountable 
"infinite drive". Locking is needed for Office, Mac to work.


The elasticity in the computing cloud makes the WebDAV daemons 
horizontally scalable as long as ZooKeeper can keep up, but with 40k 
writes/reads a second and a bit of clever caching that should be no 
problem. And we can always have multiple ensembles (what a great problem 
to have...) and do some clever tricks there with ensemble routing (get 
user joe always to ensemble #1).


So, there is the use case. Given that WebDAV is a good cross-platform 
user mountable file system, I hope to make a lot of people happy the 
next few months (I'd want it :-)


Regards,

Maarten

Mahadev Konar schreef:

Hi Maarten,

   zkfuse does not have any support for acls. We havent had much time to
focus on zkfuse. Create/read/write/delete/ls are all supported. It was built
mostly for infrequent updates and more of a browsing interface on
filesystem. I don't think zkfuse is being used in production anywhere. Would
you mind elaborating your use case?

Thanks
mahadev


On 11/24/09 11:14 AM, "Maarten Koopmans"  wrote:

   

Hi,

I just started using zkfuse, and this may very well suit my needs for
now. Thumbs up to the ZooKeeper team!

What operations are supported (i.e. what is the best use of zkfuse). I
can see how files, dirs there creation and listing map quite nicely. ACLs?

I have noticed two things on a fresk Ubuntu 9.10 (posting for future
archive reference):

- I *have* to run in debug mode (-d)
- you have to add libboost  or it won't compile

Regards,

Maarten
 



   




Re: zkfuse

2009-11-24 Thread Mahadev Konar
Hi Maarten,

  zkfuse does not have any support for acls. We havent had much time to
focus on zkfuse. Create/read/write/delete/ls are all supported. It was built
mostly for infrequent updates and more of a browsing interface on
filesystem. I don't think zkfuse is being used in production anywhere. Would
you mind elaborating your use case?

Thanks
mahadev


On 11/24/09 11:14 AM, "Maarten Koopmans"  wrote:

> Hi,
> 
> I just started using zkfuse, and this may very well suit my needs for
> now. Thumbs up to the ZooKeeper team!
> 
> What operations are supported (i.e. what is the best use of zkfuse). I
> can see how files, dirs there creation and listing map quite nicely. ACLs?
> 
> I have noticed two things on a fresk Ubuntu 9.10 (posting for future
> archive reference):
> 
> - I *have* to run in debug mode (-d)
> - you have to add libboost  or it won't compile
> 
> Regards,
> 
> Maarten



zkfuse

2009-11-24 Thread Maarten Koopmans

Hi,

I just started using zkfuse, and this may very well suit my needs for 
now. Thumbs up to the ZooKeeper team!


What operations are supported (i.e. what is the best use of zkfuse). I 
can see how files, dirs there creation and listing map quite nicely. ACLs?


I have noticed two things on a fresk Ubuntu 9.10 (posting for future 
archive reference):


- I *have* to run in debug mode (-d)
- you have to add libboost  or it won't compile

Regards,

Maarten